Back to index

CL-Markdown

Paragraph one.

Paragraph two.

The end.

Markdown

Paragraph one.

Paragraph two.

The end.

HTML Difference

Insert: 1, Delete: 4, Replace 0

Paragraph one.

Paragraph two.

The end.

HTML from CL Markdown

<p>
Paragraph one.</p>

<p>
<!-- This is a simple comment -->
</p>

<p>
<!--         This is another comment. -->
</p>

<p>
Paragraph two.</p>

<p>
<!-- one comment block == == with two comments -->
</p>

<p>
The end.</p>

Original source

Paragraph one.

<!-- This is a simple comment -->


<!--
	This is another comment.
-->


Paragraph two.

<!-- one comment block -- -- with two comments -->


The end.